All files / src/app not-found.tsx

0% Statements 0/3
100% Branches 0/0
0% Functions 0/1
0% Lines 0/3

Press n or j to go to the next uncovered block, b, p or k for the previous block.

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17                                 
'use client';
 
import { useTranslation } from 'react-i18next';
 
export default function NotFound() {
  const { t } = useTranslation();
  return (
    <div className="min-h-screen flex items-center justify-center p-8">
      <div className="max-w-md text-center">
        <h1 className="text-2xl font-semibold mb-2">{t('common.pageNotFoundTitle')}</h1>
        <p className="text-gray-600 mb-4">{t('common.notFound')}</p>
        <a href="/login" className="text-blue-600 underline">{t('common.goToLogin')}</a>
      </div>
    </div>
  );
}